/* Width */
.max-w-sm {
    max-width: 24rem;
}

.w-3 {
    width: 0.875rem;
}

/* Height */
.h-3 {
    height: 0.875rem;
}

/* Background Colors */
.bg-white {
    background-color: #fff;
}

.bg-blue-700 {
    background-color: #373773;
}

.dark\:bg-gray-800 {
    background-color: #2d3748;
}

.dark\:bg-blue-600 {
    background-color: #25254D;
}

/* Border */
.border {
    border-width: 1px;
}

.border-gray-200 {
    border-color: #edf2f7;
}

.dark\:border-gray-700 {
    border-color: #4a5568;
}

/* Border Radius */
.rounded-lg {
    border-radius: 0.5rem;
}

.rounded-t-lg {
    border-top-left-radius: 0.5rem;
    border-top-right-radius: 0.5rem;
}

/* Box Shadow */
.shadow {
    box-shadow: 0 0 15px 0 rgba(0, 0, 0, 0.1);
}

/* Display */
.inline-flex {
    display: inline-flex;
}

/* Alignment */
.items-center {
    align-items: center;
}

/* Padding */
.px-3 {
    padding-left: 0.75rem;
    padding-right: 0.75rem;
}

.py-2 {
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
}

.p-5 {
    padding: 1.25rem;
}

/* Margin */
.mb-3 {
    margin-bottom: 0.75rem;
}

.mb-2 {
    margin-bottom: 0.5rem;
}

.ms-2 {
    margin-left: 0.5rem;
}

/* Font Size */
.text-sm {
    font-size: 0.875rem;
}

.text-2xl {
    font-size: 1.5rem;
}

/* Font Weight */
.font-medium {
    font-weight: 500;
}

.font-normal {
    font-weight: 400;
}

.font-bold {
    font-weight: 700;
}

/* Text Alignment */
.text-center {
    text-align: center;
}

/* Text Color */
.text-white {
    color: #fff;
}

.text-gray-700 {
    color: #4a5568;
}

.dark\:text-gray-400 {
    color: #cbd5e0;
}

.text-gray-900 {
    color: #2d3748;
}

/* Letter Spacing */
.tracking-tight {
    letter-spacing: -0.025em;
}

/* Hover States */
.hover\:bg-blue-800:hover {
    background-color: #010101;
}

.dark\:hover\:bg-blue-700:hover {
    background-color: #131327;
}

/* Focus States */
.focus\:ring-4:focus {
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.5);
}

.focus\:outline-none:focus {
    outline: none;
}

.focus\:ring-blue-300:focus {
    box-shadow: 0 0 0 3px rgba(66, 153, 225, 0.5);
}

.dark\:focus\:ring-blue-800:focus {
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.5);
}
