/*
To change this license header, choose License Headers in Project Properties.
To change this template file, choose Tools | Templates
and open the template in the editor.
*/
/* 
    Created on : May 17, 2017, 10:35:55 AM
    Author     : Dana Yasin
*/


body {
    background-size: cover;
    font-family: 'Arial', sans-serif;
    background-color: #f2f2f2; /* Light gray background */
    color: #333; /* Dark gray text color */
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    font-size: small
}
.logodiv {
    width: 100%;
    background-color: #005e66;
}
.divTit {
    color: white;
}
table.list  {
    width: 50%;
    margin: 0;
    background: #FFFFFF;
    border: 1px solid black;
    border-collapse: collapse;
}

table.list td, table.list th {
    border: 1px solid black;
    padding: 6px 16px;


}
.profTb th {
    text-align: right;
}
.tabList {
    /*width: 100%;*/
    border-collapse: collapse;
    border-radius: 8px;
    overflow: hidden;
    background: #FFFFFF;
    alignment-adjust: central

}
.tabList th  {
    padding: 4px 7px;
    text-align: center;
    border-bottom: 1px solid #ddd;
}
.tabList td {
    padding: 4px 7px;
    text-align: right;
    border-bottom: 1px solid #ddd;
}
.tabList tbody tr:hover {
    background-color: #f2f2f2; /* Light gray background on hover */
}
.tabList th {
    background-color: #005e66; /* Modern green color for table header */
    color: #fff; /* Text color */
}

ul {
    list-style-type: none;
    margin: 0;
    padding: 0;
    overflow: hidden;
    background-color: #3498db;
}

li {
    float: right;
}

li a {
    display: block;
    color: white;
    text-align: center;
    padding: 14px 16px;
    text-decoration: none;
}

.input-text {
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-size: 14px;
    width: 200px;
    transition: border-color 0.3s;
}

.input-text:focus {
    border-color: #005e66; /* Focus border color */
    outline: none; /* Remove default focus outline */
}

.mainButt  {
    display: inline-block;
    padding: 5px 12px;
    border: none;
    border-radius: 6px;
    background-color: #005e66; /* Modern green color */
    color: #fff; /* Text color */
    font-size: 16px;
    cursor: pointer;
    transition: background-color 0.3s, transform 0.2s;


}
.mainButt:hover {
    background-color: #337e85; /* Darker shade on hover */
    transform: translateY(-2px); /* Move slightly up on hover */
}

#mainButt  {
    display: inline-block;
    padding: 5px 12px;
    border: none;
    border-radius: 6px;
    background-color: #005e66; /* Modern green color */
    color: #fff; /* Text color */
    font-size: 16px;
    cursor: pointer;
    transition: background-color 0.3s, transform 0.2s;


}
#mainButt:hover {
    background-color: #337e85; /* Darker shade on hover */
    transform: translateY(-2px); /* Move slightly up on hover */
}
.mainButt2  {
    display: inline-block;
    padding: 5px 12px;
    border: none;
    border-radius: 6px;
    background-color: green; /* Modern green color */
    color: #fff; /* Text color */
    font-size: 16px;
    cursor: pointer;
    transition: background-color 0.3s, transform 0.2s;


}
.mainButt2:hover {
    background-color: green; /* Darker shade on hover */
    transform: translateY(-2px); /* Move slightly up on hover */
}

.delButt  {
    display: inline-block;
    padding: 5px 12px;
    border: none;
    border-radius: 6px;
    background-color: #e74c3c;/* Modern green color */
    color: #fff; /* Text color */
    font-size: 16px;
    cursor: pointer;
    transition: background-color 0.3s, transform 0.2s;


}
.delButt:hover {
    background-color: #c0392b; /* Darker shade on hover */
    transform: translateY(-2px); /* Move slightly up on hover */
}

select {
    background-position: center right;
    background-repeat: no-repeat;
    border: 1px solid #AAA;
    margin: 0;
    padding-top: 2px;
    padding-bottom: 2px;
    width: 300px;
}
/* Form Container Style */
.form-container {
    /*  max-width: 800px;
    */
    padding: 20px;
    background-color: #f9f9f9; /* Light gray background */
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1); /* Subtle shadow */
    

}