#page {
    padding: 0 20px;
    max-width: 520px;
    margin: auto;
    margin-bottom: 20px;
}

.calling-title {
    font-weight: bold;
    font-size: 24px;
    margin: 10px 0;
}

.calling-list {
    display: table;
    width: 100%;
    border-collapse: collapse;
    max-width: 540px;
    font-size: 12px;
}

.calling-item {
    display: table-row;
}

.calling-item-sno, .calling-item-name, .calling-item-mobile {
    display: table-cell;
    padding: 8px;
    border: 1px solid #ccc;
    text-align: center;
}

.calling-item-sno {
    width: 5%;
}

.calling-item-name {
    width: 45%;
}

.calling-item-mobile {
    width: 50%;
}
.alert.alert-info {
    background: blue;
    color: white;
    padding: 3px;
}
.alert.alert-error {
    background: red;
    color: white;
    padding: 3px;
}
.alert.alert-success {
    background: green;
    color: white;
    padding: 3px;
}
.button {
    display: inline-block;
    border-radius: 8px;
    overflow: hidden;
    background: #fdce29;
    font-weight: bold;
    font-size: 14px;
    cursor: pointer;
    border: 0;
    padding: 2px 10px;
    -webkit-user-select: none; /* Safari */
    -moz-user-select: none; /* Firefox */
    -ms-user-select: none; /* IE/Edge */
    user-select: none; /* Standard syntax */
    text-decoration: none;
    color: #4d0809;
}
.links {
    display: flex;
    justify-content: space-evenly;
    margin: 10px 0;
    gap: 10px;
}
.links .button-tab {
    padding: 10px;
    border-radius: 5px;
    background-color: #f0f0f0;
    color: #333;
    text-decoration: none;
    text-align: center;
}
a.button-tab:hover {
    background: #d21001;
    color: white;
}
.stats {
    display: flex;
    justify-content: space-evenly;
    margin: 20px 0 10px;
    gap: 10px;
}
.stats-item {
    padding: 10px;
    border-radius: 5px;
    background-color: #f8e8a3;
    color: #920a00;
    text-align: center;
    min-width: 120px;
}
.stats-item .stats-value {
    font-size: 24px;
    font-weight: bold;
}
.stats-item .stats-label {
    font-size: 12px;
}