.access-info{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    width: 311px;
    height: auto;
    gap: 8px;
    margin-top: 20px;
    color: #242424;
    background-color: #fff;
    padding: 10px;
    border: #100169 solid 2px;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    line-height: 1.6;
}

.access-info p{
    font-size: 15px;
}

caption{
    display: none;
}

.access-table{
    width: 311px;
    height: auto;
    border: #100169 solid 2px;
    font-size: 16px;
}

.access-table th, .access-table td{
    border: #100169 solid 1px;
    padding: 8px;
    text-align: left;
    font-size: 15px;
    color: #242424;
}

.access-table th{
    background-color: #E8F6FE;
    width: 30%;
}

.access-table td{
    background-color: #fff;
    width: 70%;
}

@media (max-width: 311px) {
    .access-table {
        width: 100%; 
    }
    
    .access-table th, .access-table td {
        font-size: 14px;
    }
}