/* Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800&display=swap');

/* Base Reset */
*, *::before, *::after {
    box-sizing: border-box;
}

body {
    margin: 0;
    font-family: 'Inter', sans-serif;
    color: #111827;
    background-color: transparent;
    -webkit-font-smoothing: antialiased;
}

/* Global Buttons */
.ms-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.6rem 1.25rem;
    border-radius: 6px;
    font-weight: 500;
    font-size: 0.95rem;
    border: 1px solid transparent;
    cursor: pointer;
    transition: all 0.2s;
    text-decoration: none;
}
.ms-btn:focus {
    outline: 2px solid transparent;
    outline-offset: 2px;
}
.ms-btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}
.ms-btn svg {
    flex-shrink: 0;
}
.ms-btn-icon {
    gap: 0.5rem;
}
.ms-btn-block {
    display: flex;
    width: 100%;
}

/* Primary Button */
.ms-btn-primary {
    background-color: #4f46e5;
    color: #ffffff;
    border-color: #4f46e5;
    box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
}
.ms-btn-primary:hover:not(:disabled) {
    background-color: #4338ca;
    border-color: #4338ca;
}
.ms-btn-primary:focus {
    box-shadow: 0 0 0 2px #ffffff, 0 0 0 4px #4f46e5;
}

/* Outline Button */
.ms-btn-outline {
    background-color: #ffffff;
    color: #374151;
    border-color: #d1d5db;
    box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
}
.ms-btn-outline:hover:not(:disabled) {
    background-color: #f9fafb;
    color: #111827;
}
.ms-btn-outline:focus {
    box-shadow: 0 0 0 2px #ffffff, 0 0 0 4px #d1d5db;
}

/* Ghost Button */
.ms-btn-ghost {
    background-color: transparent;
    color: #374151;
}
.ms-btn-ghost:hover:not(:disabled) {
    background-color: #f3f4f6;
}

/* Danger Button */
.ms-btn-danger {
    background-color: #dc2626;
    color: #ffffff;
    border-color: #dc2626;
}
.ms-btn-danger:hover:not(:disabled) {
    background-color: #b91c1c;
    border-color: #b91c1c;
}
