* {
    font-family: Arial, sans-serif;
}

.btn-change:hover {
     background-color: #99CC66;
     color: black;
     cursor: pointer;
 }



 .btn-1{
     background:#008CBA;
     color: white;
     border: 2px solid #008CBA;
 }

 .btn-2{
     background:#6495ED;
     color: white;
     border: 2px solid #008CBA;
 }




 .no-hover:hover {
     background-color: initial;


 }

 .text-hover:hover{

     color:red;
     font-weight: bold;

 }

table,tr,td,th{
     border : solid 1px;
 }

/* Login page theme borrowed from dashboard styles */
:root {
    --blue-500: #9499ad;
    --blue-700: #764ba2;
}

body.login-page {
    background: linear-gradient(135deg, var(--blue-500) 0%, var(--blue-700) 100%);
    min-height: 100vh;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    padding: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.main-container {
    width: 100%;
    max-width: 480px;
}

.header-section {
    background: white;
    border-radius: 20px;
    padding: 35px;
    box-shadow: 0 15px 35px rgba(0,0,0,0.2);
    position: relative;
    overflow: hidden;
}

.header-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, #667eea, #764ba2);
}

.login-header {
    text-align: center;
    margin-bottom: 30px;
}

.login-header h2 {
    color: #667eea;
    font-size: 2.2rem;
    font-weight: bold;
    margin-bottom: 10px;
}

.login-header p {
    color: #6c757d;
    font-size: 1.1rem;
}

.login-logo {
    max-width: 120px;
    margin-bottom: 15px;
}

.form-control {
    border-radius: 10px;
    padding: 12px;
    border: 1px solid #e0e0e0;
    background-color: #f8f9fa;
    height: auto;
}

.form-control:focus {
    box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1);
    border-color: #667eea;
    background-color: #fff;
}

.input-group-text {
    background: white;
    border: 1px solid #e0e0e0;
    color: #667eea;
    padding: 12px 15px;
}

.input-group > .form-control {
    border-radius: 0 10px 10px 0;
    border-left: 0;
}

.input-group > .input-group-text {
    border-radius: 10px 0 0 10px;
    border-right: 0;
}

.btn-login {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border: none;
    padding: 15px;
    border-radius: 50px;
    font-size: 1.2rem;
    font-weight: bold;
    width: 100%;
    transition: all 0.3s ease;
    margin-top: 20px;
    box-shadow: 0 5px 15px rgba(118, 75, 162, 0.3);
}

.btn-login:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(118, 75, 162, 0.4);
    color: white;
}

.alert {
    border-radius: 10px;
    font-size: 0.9rem;
}

.dashboard-shell {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    min-height: 100vh;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    padding: 20px;
}

.dashboard-content {
    max-width: 1200px;
    margin: 0 auto;
    padding-bottom: 40px;
}

.dashboard-card {
    background: #ffffff;
    border-radius: 20px;
    padding: 30px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.18);
    margin-top: 20px;
    position: relative;
    overflow: hidden;
}

.dashboard-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, #667eea, #764ba2);
}

.dashboard-card-title {
    margin: 0;
    margin-bottom: 10px;
    color: #667eea;
    font-size: 2rem;
    font-weight: bold;
    text-align: center;
}

.dashboard-card h2 {
    margin-bottom: 15px;
    color: #667eea;
    font-size: 1.8rem;
    text-align: center;
}

.dashboard-card .form-group label {
    font-weight: bold;
}

.dashboard-card table {
    width: 100%;
    border-collapse: collapse;
}

.dashboard-card table td {
    padding: 10px 8px;
}

.dashboard-card table td strong {
    color: #1f2d5a;
}

.dashboard-table {
    width: 100%;
    border-collapse: collapse;
    background: #f7f9ff;
    border-radius: 12px;
    overflow: hidden;
    margin-top: 10px;
}

.dashboard-table td {
    border: 1px solid #dfe3ed;
    background: #fff;
}

.dashboard-label {
    background: #eef3ff;
    color: #1f2d5a;
    font-weight: bold;
    width: 30%;
    text-align: center;
}

.dashboard-value input {
    width: 100%;
}

.dashboard-action img {
    width: 40px;
    height: 40px;
}

.dashboard-action {
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.7);
    padding: 10px;
}

.dashboard-action:hover {
    background: rgba(255, 255, 255, 0.95);
}

.dashboard-footer {
    display: flex;
    justify-content: flex-end;
    gap: 10px;
}

.dashboard-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 20px;
}

.dashboard-block {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 15px;
    padding: 25px;
    box-shadow: inset 0 0 0 1px rgba(102, 126, 234, 0.2);
}
