/* assets/css/style.css */
/* Basic responsive layout and bilingual styling */
:root {
    --menu-bg: #a00;
    --menu-color: #fff;
    --primary: #28a745;
    --error-bg: #c82333;
    --success-bg: #218838;
    --container-gap: 20px;
    --font-family: "Arial", sans-serif;
}

* {
    box-sizing: border-box;
}

body {
    font-family: var(--font-family);
    margin: 0;
    padding: 0;
    background: #fafafa;
    color: #222;
}

.menu-bar {
    background: var(--menu-bg);
    color: var(--menu-color);
    padding: 10px;
    position: fixed;
    top: 0;
    width: 100%;
    display: flex;
    gap: 20px;
    align-items: center;
    z-index: 1000;
	padding-right: 20px;
	justify-content: flex-end;
}

.menu-bar a {
    color: var(--menu-color);
    text-decoration: none;
    font-weight: 600;
}

.container {
    display: flex;
    flex-wrap: wrap;
    margin-top: 68px;
    padding: 22px;
    gap: var(--container-gap);
    align-items: flex-start;
}

.image-box {
    flex: 1 1 520px;
    max-width: 520px;
    position: relative;
    background: #fff;
    border: 1px solid #e5e5e5;
    padding: 10px;
    border-radius: 6px;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.03);
}

.image-box img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 4px;
}

.download-btn {
    position: absolute;
    top: 12px;
    right: 12px;
    padding: 8px 12px;
    background: var(--primary);
    color: #fff;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-weight: 700;
}

.form-box {
    flex: 1 1 380px;
    min-width: 280px;
	width: 100%;
	height: 500px; 
    background: #fff;
    border: 1px solid #eaeaea;
    padding: 16px;
    border-radius: 6px;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.03);
}

.form-box label {
    font-weight: 600;
    margin-bottom: 6px;
    display: block;
}

.form-row {
    margin-bottom: 12px;
}

.form-row input[type="text"],
.form-row select {
    width: 100%;
    padding: 8px;
    border: 1px solid #dcdcdc;
    border-radius: 4px;
    font-size: 15px;
}

.hindi-preview {
    background: #f7f7f7;
    padding: 8px;
    border-radius: 4px;
    border: 1px dashed #ddd;
    min-height: 34px;
}

.checkbox-inline {
    display: flex;
    align-items: center;
    gap: 8px;
}

.error-msg {
    background: var(--error-bg);
    color: #fff;
    padding: 8px;
    border-radius: 4px;
    margin-bottom: 10px;
    display: none;
}

.success-msg {
    background: var(--success-bg);
    color: #fff;
    padding: 8px;
    border-radius: 4px;
    margin-bottom: 10px;
    display: none;
}

.price-label {
    font-weight: 700;
    margin-bottom: 8px;
}

.papaji {display: flex; justify-content: space-between; align-items: flex-end;}
.mataji {width:48%}
.betaji {display: inline-flex; font-weight: bold; }
.betiji {display: inline-flex; background:#ffff00; color:maroon; padding:5px; font-weight: bold;}

input, select {margin-bottom: 30px!important;}

button[type="submit"] {
    padding: 10px 14px;
    background: #007bff;
    color: #fff;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-weight: 700;
}

@media(max-width:900px) {
    .container {
        flex-direction: column;
        padding: 12px;
    }

    .image-box,
    .form-box {
        /*max-width: 100%;*/
		max-width: 500px;
    }
}
