body {
    font-family: 'Segoe UI', sans-serif;
    background: url("images/background.png") no-repeat fixed center;
        /**linear-gradient(135deg, #667eea, #764ba2);
    margin: 0;
    color: #333;**/
    display: flex;
    height: 100vh;
}


.container {
    display: flex;
    height: 100vh;
}

/* LEFT FORM */
.form-section {
    width: 70%;
    padding: 8px;
}

.form-section h2 {
    margin-bottom: 20px;
}

.row {
    display: flex;
    gap: 20px;
    margin-bottom: 20px;
}

.field {
    flex: 1;
    margin-bottom: 20px;
    flex-direction: column;
}

.field label {
    display: block;
    font-weight: bold;
    margin-bottom: 5px;
}

.field label span {
    display: block;
    font-weight: normal;
    font-size: 12px;
    color: #777;
}

input, select {
    width: 100%;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 6px;
}

button {
    padding: 12px 25px;
    background: #007bff;
    border: none;
    color: white;
    border-radius: 6px;
    cursor: pointer;
}

button:hover {
    background: #0056b3;
}

/* RIGHT IMAGE */
.image-section {
    margin-top: 60px;
    width: 30%;
    height:auto;
}

.image-section img {
    
    width: 100%;
    height: 100vh;
    object-fit: cover;
}

/* RESPONSIVE */
@media (max-width: 768px) {
    .container {
        flex-direction: column;
    }

    .form-section,
    .image-section {
        width: 100%;
        height: auto;
    }
}

.form-container {
    width: 672px;
    margin: 48px auto;
    background: #dddddd;
    padding: 24px;
    border-radius: 12px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.2);
}

.urdu {
    font-family: Jameel Noori Nastaleeq;
    text-align: right;
    font-weight: 400;
    font-size: 16px;
}

/** DROP DOWN **/

.box {
    width: 300px;
    margin-bottom: 20px;
    position: relative;
}

.suggestions {
    position: absolute;
    width: 100%;
    background: #fff;
    border: 1px solid #ccc;
    border-top: none;
    max-height: 180px;
    overflow-y: auto;
    display: none;
    z-index: 10;
}

.item {
    padding: 8px;
    cursor: pointer;
}

.item:hover {
    background: #f0f0f0;
}

.disabled {
    background: #eee;
}

/** END DROP DOWN **/

h2 {
    text-align: center;
    color: #444;
}

label {
    margin-top: 10px;
    display: block;
    font-weight: 600;
}

table {
    margin-top: 10px;
    font-weight: 600;
}



input, textarea{
    width: 100%;
    padding: 10px;
    margin-top: 6px;
    border-radius: 8px;
    border: 1px solid #ddd;
}

button {
    width: 100%;
    margin-top: 15px;
    padding: 12px;
    border: none;
    background: #667eea;
    color: white;
    font-size: 16px;
    border-radius: 8px;
    cursor: pointer;
}

button:hover {
    background: #5a67d8;
}

.container {
    width: 95%;
    margin: 30px auto;
    background: white;
    padding: 20px;
    border-radius: 12px;
}

.top-bar {
    display: flex;
    justify-content: space-between;
    margin-bottom: 15px;
}

input.search {
    width: 250px;
    padding: 8px;
}

a.btn {
    padding: 8px 12px;
    background: green;
    color: white;
    border-radius: 6px;
    text-decoration: none;
}

a.delete {
    background: red;
    padding: 6px 10px;
    color: white;
    border-radius: 5px;
    text-decoration: none;
}

table {
    width: 100%;
    border-collapse: collapse;
}

th {
    background: #667eea;
    color: white;
}

th, td {
    padding: 10px;
    border-bottom: 1px solid #ddd;
}