.dashboard-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem;
    padding-top: 100px;
}
.country-dial-codes-table-container {
    margin-top: 2rem;
    background: #fff;
    border-radius: 1rem;
    box-shadow: 0 2px 16px rgba(0,0,0,0.07);
    padding: 1.5rem;
}
.country-dial-codes-table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 1rem;
}
.country-dial-codes-table th, .country-dial-codes-table td {
    padding: 0.75rem 1rem;
    text-align: left;
    border-bottom: 1px solid #e5e7eb;
}
.country-dial-codes-table th {
    background: #f3f4f6;
    font-weight: 600;
    color: #374151;
}
.country-dial-codes-table tr:hover td {
    background: #e0e7ff;
}
.btn-danger {
    background: #ef4444;
    color: #fff;
}
.btn-danger:hover {
    background: #dc2626;
}
.empty-state {
    text-align: center;
    color: #666;
    padding: 2rem 1rem;
}
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(0,0,0,0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
}
.modal {
    background: #fff;
    border-radius: 1rem;
    box-shadow: 0 2px 16px rgba(0,0,0,0.07);
    padding: 2rem 1.5rem;
    min-width: 350px;
    max-width: 95vw;
}
.modal-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 1rem;
}
.modal-header h2 {
    font-size: 1.3rem;
    font-weight: 600;
}
.modal-close {
    background: none;
    border: none;
    font-size: 1.2rem;
    cursor: pointer;
    color: #888;
}
.form-group {
    margin-bottom: 1rem;
}
.form-group label {
    display: block;
    font-weight: 500;
    margin-bottom: 0.3rem;
}
.form-input {
    width: 100%;
    padding: 0.5rem 1rem;
    border-radius: 0.5rem;
    border: 1px solid #e5e7eb;
    font-size: 1rem;
    background: #f9fafb;
    color: #222;
}
.form-input:focus {
    outline: none;
    border-color: #3b82f6;
    background: #fff;
}
.modal-footer {
    display: flex;
    justify-content: flex-end;
    gap: 1rem;
    margin-top: 1rem;
}
.toast {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    min-width: 220px;
    background: #fff;
    border-radius: 0.75rem;
    box-shadow: 0 2px 16px rgba(59,130,246,0.12);
    padding: 1rem 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.7rem;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s;
    z-index: 9999;
}
.toast.show {
    opacity: 1;
    pointer-events: auto;
}
.toast.success {
    border-left: 5px solid #22c55e;
}
.toast.info {
    border-left: 5px solid #3b82f6;
}
.toast.error {
    border-left: 5px solid #ef4444;
}
.country-dial-codes-table td .btn,
.country-dial-codes-table th .btn {
    padding: 0.3rem 0.7rem;
    font-size: 0.95rem;
    border-radius: 0.4rem;
    min-width: unset;
    line-height: 1.2;
}
.country-dial-codes-table td .btn i {
    font-size: 0.8rem;
}

.country-dial-codes-table td .btn svg {
    width: 16px;
    height: 16px;
}