.nav-panel {
    background-color: #f5f6f7;
    border-right: 1px solid #dee2e6;
    height: 100vh;
    /* padding: 20px 0; */
    position: fixed;
    width: 250px;
    left: 0;
    top: 0;
    display: flex;
    flex-direction: column;
}
ul {
    display: flex;
    flex-direction: column;
    /* padding:25px; */
    list-style: none;
    gap: 25px;
}

/* Info Icon---------- */
.info-icon {
    position: absolute;
    top: 24px;
    right: 40px;
    font-size: 24px;
    color: #00338D;
    cursor: pointer;
    z-index: 1100;
    background: #fff;
    border-radius: 50%;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 8px rgba(0,0,0,0.07);
    transition: background 0.2s;
}
.info-icon:hover {
    background: #f0f4fa;
}

/* Modal Overlay */
.modal {
    position: fixed;
    top: 0; left: 0;
    width: 100vw; height: 100vh;
    background: rgba(0,0,0,0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1200;
}
.modal.hidden {
    display: none;
}

/* Modal Content */
.modal-content {
    background: #fff;
    border-radius: 12px;
    padding: 32px 32px 28px 32px;
    max-width: 540px;
    width: 95vw;
    box-shadow: 0 8px 32px rgba(0,0,0,0.15);
    position: relative;
    font-family: 'Inter', sans-serif;
}

.modal-header {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    margin-bottom: 12px;
}

.modal-header-icon {
    font-size: 2.2rem;
    color: #00338D;
    margin-top: 2px;
    flex-shrink: 0;
}

.modal-content h2 {
    margin-top: 0 0 2px 0;
    color: #00338D;
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 16px;
}

.modal-subtitle {
    color: #444;
    font-size: 1rem;
    margin-bottom: 8px;
}

.modal-content ol {
    padding-left: 20px;
}
.modal-content li {
    margin-bottom: 12px;
    font-size: 1rem;
}

.instructions-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.instructions-list li {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    margin-bottom: 18px;
}

.step-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    background: #e8f0fe;
    color: #00338D;
    font-weight: bold;
    font-size: 1.2rem;
    border-radius: 50%;
    width: 32px;
    height: 32px;
    flex-shrink: 0;
    margin-top: 2px;
}

.step-desc {
    color: #444;
    font-size: 1rem;
    margin-top: 2px;
}

.close {
    position: absolute;
    top: 18px;
    right: 24px;
    font-size: 1.5rem;
    color: #888;
    cursor: pointer;
    font-weight: bold;
    z-index: 10;
}
.close:hover {
    color: #00338D;
}

/*Icon end-----------*/


.img-div{
    /* width:fit-content; */
    /* padding:25px; */
    width: 150px;
    padding-top:0px;
    padding-bottom: 0px;
 
}
 
.nav-panel ul {
    display: flex;
    flex-direction: column;
    /* padding: 25px; */
    list-style: none;
    gap: 25px;
    margin: 0;
}
 
.nav-panel a {
    text-decoration: none;
    color: #333;
    font-size: 16px;
    display: flex;
    align-items: center;
    gap: 10px;
}
 
.inter {
    font-family: "Inter", sans-serif;
    font-optical-sizing: auto;
    /* font-weight: <weight>; */
    font-style: normal;
}
 
body{
    background-color: #f4f4f4;
    margin-left: 275px;
        font-family:inter;
}
 
/* extra stuff */
 
.testcase-card {
    background-color: #ffffff;
    border: 1px solid #e2e8f0;
    border-top: 4px solid #00338D; /* Blue top border */
    border-radius: 10px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    margin-bottom: 24px;
    overflow: hidden;
    transition: box-shadow 0.3s ease;
}
 
.testcase-card:hover {
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.08);
}
 
.testcase-header {
    font-size: 1.1rem;
    font-weight: 600;
    color: #00338D;
    padding: 12px 20px 4px 20px;
    font-family: 'Inter', sans-serif;
}
 
.testcase-body {
    padding: 12px 20px 20px 20px;
    background-color: #f9fafb;
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    color: #333;
    line-height: 1.6;
    white-space: pre-wrap;
    word-break: break-word;
}