/* Phone Call Page Styles */

body {
    display: flex;
    flex-direction: column;
}

.page-content {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

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

h1 {
    margin-bottom: 30px;
    font-size: 1.8rem;
}

.card {
    border-radius: 16px;
    padding: 30px;
    margin-bottom: 20px;
}

.card-title {
    margin-bottom: 16px;
}

.form-group {
    margin-bottom: 20px;
}

label {
    font-size: 14px;
    color: #aaa;
    margin-bottom: 8px;
}

input {
    padding: 14px 16px;
    font-size: 18px;
    letter-spacing: 1px;
}

select {
    padding: 14px 16px;
    font-size: 16px;
}

input[type="tel"] {
    letter-spacing: 0.5px;
}

button {
    width: 100%;
    padding: 16px 24px;
    font-size: 16px;
}

.btn-call {
    background: #2ed573;
    color: #000;
}

.btn-call:hover:not(:disabled) {
    background: #26b85f;
}

.btn-call:disabled {
    background: #333;
    color: #666;
}

.btn-hangup {
    background: #ff4757;
    color: #fff;
}

.btn-hangup:hover {
    background: #ff3344;
}

.status-section {
    text-align: center;
    padding: 20px 0;
}

.status-icon {
    font-size: 48px;
    margin-bottom: 16px;
}

.status-text {
    font-size: 18px;
    color: #888;
    margin-bottom: 8px;
}

.status-detail {
    font-size: 14px;
    color: #666;
}

.status-calling .status-icon {
    animation: pulse 1s infinite;
}

.status-connected {
    color: #2ed573;
}

.status-connected .status-text {
    color: #2ed573;
}

.timer {
    font-size: 32px;
    font-weight: 300;
    color: #00d4ff;
    margin: 20px 0;
    font-variant-numeric: tabular-nums;
}

.info-text {
    text-align: center;
    color: #666;
    font-size: 12px;
    margin-top: 20px;
}
