
/*---------------------------------------*/
/* Font */
/*---------------------------------------*/
@import url('https://fonts.googleapis.com/css?family=Roboto');


/*---------------------------------------*/
/* Register Form */
/*---------------------------------------*/
body {
    /*background:linear-gradient(to right, #78a7ba 0%, #385D6C 50%, #78a7ba 99%);*/
}

.signup-form {
    font-family: "Roboto", sans-serif;
    width:650px;
    margin:30px auto;
    /*background:linear-gradient(to right, #ffffff 0%, #fafafa 50%, #ffffff 99%);*/
    border-radius: 10px;
}

/*---------------------------------------*/
/* Form Header */
/*---------------------------------------*/
.form-header  {
    background-color: #EFF0F1;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
}

.form-header h1 {
    font-size: 30px;
    text-align:center;
    color:#666;
    padding:20px 0;
    border-bottom:1px solid #cccccc;
}

/*---------------------------------------*/
/* Form Body */
/*---------------------------------------*/
.form-body {
    padding:10px 40px;
    color:#666;
}

.form-group{
    margin-bottom:20px;
}

.form-body .label-title {
    color:#1BBA93;
    font-size: 17px;
    font-weight: bold;
}

.form-body .form-input {
    font-size: 17px;
    box-sizing: border-box;
    width: 100%;
    height: 34px;
    padding-left: 10px;
    padding-right: 10px;
    color: #333333;
    text-align: left;
    border: 1px solid #d6d6d6;
    border-radius: 4px;
    background: white;
    outline: none;
}



.horizontal-group .left{
    float:left;
    width:49%;
}

.horizontal-group .right{
    float:right;
    width:49%;
}

input[type="file"] {
    outline: none;
    cursor:pointer;
    font-size: 17px;
}

#range-label {
    width:15%;
    padding:5px;
    background-color: #1BBA93;
    color:white;
    border-radius: 5px;
    font-size: 17px;
    position: relative;
    top:-8px;
}


::-webkit-input-placeholder  {
    color:#d9d9d9;
}

/*---------------------------------------*/
/* Form Footer */
/*---------------------------------------*/
.signup-form .form-footer  {
    background-color: #EFF0F1;
    border-bottom-left-radius: 10px;
    border-bottom-right-radius: 10px;
    padding:10px 40px;
    text-align: right;
    border-top: 1px solid #cccccc;
    clear:both;
}

.form-footer span {
    float:left;
    margin-top: 10px;
    color:#999;
    font-style: italic;
    font-weight: thin;
}

.btn {
    display:inline-block;
    padding:10px 20px;
    background-color: #1BBA93;
    font-size:17px;
    border:none;
    border-radius:5px;
    color:#bcf5e7;
    cursor:pointer;
}

.btn:hover {
    background-color: #169c7b;
    color:white;
}

.card {
    font-family: "Roboto", sans-serif;
    width:90%;
    margin:30px auto;
    /*background:linear-gradient(to right, #ffffff 0%, #fafafa 50%, #ffffff 99%);*/
    border-radius: 10px;
}

.card-header  {
    background-color: #EFF0F1;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
}

.card-header h1 {
    font-size: 30px;
    text-align:center;
    color:#666;
    padding:20px 0;
    border-bottom:1px solid #cccccc;
}

/*---------------------------------------*/
/* Form Body */
/*---------------------------------------*/
.card-body {
    padding:10px 40px;
    color:#666;
}


#mainMenu {
    margin:30px auto;
    width:90%;
    font-family: sans-serif;
    height: 30px;
}
#mainMenu li {
    display:block;
    width:auto;
    float:left;
    margin-left:2px;
    border:2px solid #000;
}

#mainMenu a {
    display:block;
    padding:3px;
    text-decoration:none;
    background-color:#fff;
    color:#009;
}

#mainMenu a:hover {
    background-color:#009;
    color:#fff;
}

.error_msg{
    color:red;
    font-size: 20px;
    margin-left: 30px;
}

.success_msg{
    color:green;
    font-size: 20px;
    margin-left: 30px;
}

.hak_table {
    font-family: Arial, Helvetica, sans-serif;
    border-collapse: collapse;
    width: 100%;
}

.hak_table td, .hak_table th {
    border: 1px solid #ddd;
    padding: 8px;
}

.hak_table tr:nth-child(even){background-color: #f2f2f2;}

.hak_table tr:hover {background-color: #ddd;}

.hak_table th {
    padding-top: 12px;
    padding-bottom: 12px;
    text-align: left;
    background-color: #04AA6D;
    color: white;
}

.status-icon {
    font-size: 18px;
}

.green-tick {
    color: green;
}

.red-cross {
    color: red;
}

.blue-tick {
    color: blue;
}

.action-btn {
    background-color: #007bff;
    color: white;
    border: none;
    padding: 4px 10px;
    cursor: pointer;
    border-radius: 3px;
    font-size: 14px;
}

.action-btn:disabled {
    background-color: gray;
    cursor: not-allowed;
}

td > .action-btn {
    display: inline-block;
    margin-right: 8px;
    vertical-align: middle;
    text-decoration: none;
    padding: 4px 10px;
    border-radius: 3px;
    font-size: 14px;
}

td {
    white-space: nowrap;
}

td.action-cell {
    display: flex;
    align-items: center;
    gap: 4px;
}

.table-responsive {
    width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    margin-bottom: 1rem;
}

@media (max-width: 768px) {
    .hak_table thead tr:nth-child(2) td,
    .hak_table th,
    .hak_table td {
        white-space: normal;
    }

    td.action-cell {
        flex-wrap: wrap;
        gap: 6px;
    }

    .action-btn {
        padding: 6px 12px;
        font-size: 13px;
    }

    /* Optional: smaller font size for the table */
    .hak_table {
        font-size: 13px;
    }
}
