/* tools-card.css */

/* Layout */
.card {
    padding: 0.75rem;
}

.card-body {
    padding: 1rem;
}

.grid {
    display: grid;
    gap: 1.5rem;
}

@media (min-width: 768px) {
    .md\:grid-cols-2 {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

/* Card box styles */
.p-6 {
    padding: 1.5rem;
}

.border {
    border-width: 1px;
    border-color: #d1d5db; /* gray-300 */
    border-style: solid;
}

.rounded {
    border-radius: 0.375rem;
}

.bg-white {
    background-color: #ffffff;
}

.shadow {
    box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
}

.hover\:shadow-lg:hover {
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1),
    0 4px 6px -2px rgba(0, 0, 0, 0.05);
}

.transition {
    transition: all 150ms ease-in-out;
}

/* Typography */
.text-xl {
    font-size: 1.25rem;
    line-height: 1.75rem;
}

.font-bold {
    font-weight: 700;
}

.mb-4 {
    margin-bottom: 1rem;
}

.text-lg {
    font-size: 1.125rem;
    line-height: 1.75rem;
}

.font-semibold {
    font-weight: 600;
}

.mb-2 {
    margin-bottom: 0.5rem;
}

.text-gray-700 {
    color: #374151;
}

.text-sky-700 {
    color: #0369a1;
}

.text-emerald-700 {
    color: #047857;
}

.text-indigo-700 {
    color: #4338ca;
}

.text-rose-700 {
    color: #be123c;
}

.mb-3 {
    margin-bottom: 0.75rem;
}

/* Forms */
.flex {
    display: flex;
}

.flex-col {
    flex-direction: column;
}

.sm\:flex-row {
    flex-direction: column;
}

@media (min-width: 640px) {
    .sm\:flex-row {
        flex-direction: row;
    }
}

.gap-2 {
    gap: 0.5rem;
}

.w-full {
    width: 100%;
}

.border-gray-300 {
    border-color: #d1d5db;
}

.rounded {
    border-radius: 0.375rem;
}

.px-3 {
    padding-left: 0.75rem;
    padding-right: 0.75rem;
}

.py-2 {
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
}

.focus\:outline-none:focus {
    outline: 0;
}

.focus\:ring-2:focus {
    box-shadow: 0 0 0 2px rgba(3, 105, 161, 0.5);
}

.focus\:ring-sky-500:focus {
    box-shadow: 0 0 0 2px rgba(3, 105, 161, 0.5);
}

.focus\:ring-emerald-500:focus {
    box-shadow: 0 0 0 2px rgba(4, 120, 87, 0.5);
}

.focus\:ring-indigo-500:focus {
    box-shadow: 0 0 0 2px rgba(67, 56, 202, 0.5);
}

.focus\:ring-rose-500:focus {
    box-shadow: 0 0 0 2px rgba(190, 18, 60, 0.5);
}

/* Buttons */
.bg-sky-600 {
    background-color: #0284c7;
}

.hover\:bg-sky-700:hover {
    background-color: #0369a1;
}

.bg-emerald-600 {
    background-color: #059669;
}

.hover\:bg-emerald-700:hover {
    background-color: #047857;
}

.bg-indigo-600 {
    background-color: #4f46e5;
}

.hover\:bg-indigo-700:hover {
    background-color: #4338ca;
}

.bg-rose-600 {
    background-color: #e11d48;
}

.hover\:bg-rose-700:hover {
    background-color: #be123c;
}

.text-white {
    color: #ffffff;
}

.font-semibold {
    font-weight: 600;
}

.px-4 {
    padding-left: 1rem;
    padding-right: 1rem;
}

.py-2 {
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
}

.rounded {
    border-radius: 0.375rem;
}
