* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Google Sans', 'Roboto', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    background-color: #ffffff;
    color: #202124;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

/* Header */
.header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 24px;
    height: 64px;
    border-bottom: 1px solid #e8eaed;
}

.header-left {
    display: flex;
    align-items: center;
}

.google-logo {
    display: flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
    color: inherit;
}

.google-logo-img {
    height: 28px;
    width: auto;
}

.cuenta-text {
    font-size: 22px;
    color: #5f6368;
    font-weight: 400;
}

.header-right {
    display: flex;
    align-items: center;
    gap: 8px;
}

.icon-button {
    background: none;
    border: none;
    cursor: pointer;
    color: #5f6368;
    padding: 8px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background-color 0.2s;
    text-decoration: none;
}

.icon-button:hover {
    background-color: rgba(60, 64, 67, 0.08);
}


/* Main Content */
.main-content {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px 20px;
}

.alert-card {
    background-color: #ffffff;
    border-radius: 8px;
    box-shadow: 0 1px 3px rgba(60, 64, 67, 0.3), 0 4px 8px rgba(60, 64, 67, 0.15);
    padding: 40px;
    max-width: 500px;
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.date-time {
    color: #5f6368;
    font-size: 14px;
    font-weight: 400;
}

.alert-title {
    font-size: 24px;
    font-weight: 400;
    color: #202124;
    line-height: 1.33;
    margin: 0;
}


.warning-message {
    color: #5f6368;
    font-size: 14px;
    line-height: 1.43;
}

.login-details {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px;
    background-color: #f8f9fa;
    border-radius: 8px;
}

.device-icon {
    width: 40px;
    height: 40px;
    background-color: #f8f9fa;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    overflow: hidden;
}

.linux-icon {
    width: 100%;
    height: 100%;
    object-fit: contain;
    padding: 4px;
}

.device-info {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.device-name {
    font-size: 14px;
    color: #202124;
    font-weight: 400;
}

.device-location {
    font-size: 14px;
    color: #5f6368;
    font-weight: 400;
}

.question {
    color: #5f6368;
    font-size: 14px;
    margin-top: 8px;
}

.action-buttons {
    display: flex;
    gap: 12px;
    margin-top: 8px;
}

.btn {
    flex: 1;
    padding: 11px 24px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    border: 1px solid #3c4043;
    background-color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: all 0.2s;
    font-family: inherit;
    white-space: nowrap;
}

.btn-danger {
    color: #c5221f;
}

.btn-danger:hover {
    background-color: #fce8e6;
    box-shadow: 0 1px 2px rgba(60, 64, 67, 0.3), 0 1px 3px rgba(60, 64, 67, 0.15);
}

.btn-danger svg {
    flex-shrink: 0;
    width: 18px;
    height: 18px;
    fill: #c5221f;
}

.btn-primary {
    color: #1a73e8;
}

.btn-primary:hover {
    background-color: #e8f0fe;
    box-shadow: 0 1px 2px rgba(60, 64, 67, 0.3), 0 1px 3px rgba(60, 64, 67, 0.15);
}

.btn-primary svg {
    flex-shrink: 0;
    width: 18px;
    height: 18px;
    fill: #1a73e8;
}

/* Footer */
.footer {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    padding: 24px;
    gap: 24px;
}

@media (max-width: 1100px) {
    .footer {
        justify-content: center;
    }
}

.footer-link {
    color: #5f6368;
    text-decoration: none;
    font-size: 12px;
    transition: color 0.2s;
}

.footer-link:hover {
    color: #202124;
    text-decoration: underline;
}

/* Responsive */
@media (max-width: 600px) {
    .header {
        padding: 12px 16px;
        height: auto;
        min-height: 64px;
    }

    .google-logo-img {
        height: 24px;
    }

    .cuenta-text {
        font-size: 20px;
    }

    .main-content {
        padding: 20px 16px;
    }

    .alert-card {
        padding: 24px 20px;
        gap: 14px;
    }

    .alert-title {
        font-size: 22px;
    }

    .date-time,
    .warning-message,
    .question,
    .device-name,
    .device-location {
        font-size: 13px;
    }
    
    .action-buttons {
        flex-direction: column;
        gap: 10px;
        margin-top: 12px;
    }
    
    .btn {
        width: 100%;
        padding: 12px 20px;
    }

    .login-details {
        padding: 10px;
    }

    .device-icon {
        width: 36px;
        height: 36px;
    }
    
    .footer {
        flex-wrap: wrap;
        gap: 16px;
        padding: 20px 16px;
    }

    .footer-link {
        font-size: 11px;
    }
}

@media (max-width: 400px) {
    .alert-card {
        padding: 20px 16px;
    }

    .alert-title {
        font-size: 20px;
    }

    .date-time,
    .warning-message,
    .question,
    .device-name,
    .device-location {
        font-size: 12px;
    }

    .btn {
        font-size: 13px;
        padding: 11px 18px;
    }

    .header {
        padding: 10px 12px;
    }

    .google-logo-img {
        height: 22px;
    }

    .cuenta-text {
        font-size: 18px;
    }
}

