:root {
    --laracasts-blue: #008b99;
    /* Updated from #3490dc to #008b99 */
    --laracasts-dark: #1f2937;
    --laracasts-gray-light: #f8fafc;
    --laracasts-gray: #e2e8f0;
    --laracasts-text: #4a5568;
    --bs-card-spacer-y: 1.5rem;
    --bs-card-spacer-x: 1.25rem;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif;
    color: var(--laracasts-text);
    background: radial-gradient(91.61% 116.79% at 98.7% 2.81%, #08B68D 0%, #025998 27.41%, #15416C 52.33%, #282A42 86.2%) !important;
    position: relative;
    min-height: 100vh;
}

/* Diamond grid overlay */


/* Header & Navigation */
.laracasts-header {
    background-color: rgba(31, 41, 55, 0.8);
    /* Semi-transparent dark header */
    border-bottom: none;
    padding: 1rem 0;
    backdrop-filter: blur(5px);
    /* Add blur effect for modern browsers */
}

.laracasts-nav-link {
    color: rgba(255, 255, 255, 0.8) !important;
    font-weight: 500;
    padding: 0.5rem 1rem;
    border-radius: 4px;
    transition: color 0.2s;
}

.laracasts-nav-link:hover,
.laracasts-nav-link.active {
    color: white !important;
    background-color: rgba(255, 255, 255, 0.1);
}

.laracasts-logo {
    height: auto;
    /* Changed from fixed height */
    max-height: 32px;
    /* Cap the height */
    max-width: 150px;
    /* Cap the width */
}

/* Page Header */
.laracasts-page-header {
    color: white;
    padding: 2.5rem 0;
    margin-bottom: 2rem;
}

.laracasts-page-header h1 {
    font-size: 1.875rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.laracasts-page-header p {
    opacity: 0.9;
    max-width: 42rem;
}

/* Cards */
.laracasts-card {
    background-color: rgba(255, 255, 255, 0.95);
    /* Slightly transparent white */
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    border: none;
    transition: transform 0.2s ease-in-out, box-shadow 0.2s ease-in-out;
    backdrop-filter: blur(10px);
}

.laracasts-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.1);
}

.laracasts-card-header {
    background-color: white;
    border-bottom: 1px solid var(--laracasts-gray);
    font-weight: 600;
    padding: 1rem 1.25rem;
    border-top-left-radius: 8px;
    border-top-right-radius: 8px;
}

/* Buttons */
.laracasts-button-primary {
    background-color: var(--laracasts-blue);
    border: none;
    color: white;
    padding: 0.5rem 1.25rem;
    border-radius: 4px;
    font-weight: 500;
    transition: background-color 0.2s;
}

.laracasts-button-primary:hover {
    background-color: #006d7a;
    /* Darker shade of the new blue */
    color: white;
}

.laracasts-button-secondary {
    background-color: white;
    border: 1px solid #e2e8f0;
    color: var(--laracasts-text);
    padding: 0.5rem 1.25rem;
    border-radius: 4px;
    font-weight: 500;
    transition: background-color 0.2s;
}

.laracasts-button-secondary:hover {
    background-color: #f8fafc;
}

/* Tables */
.laracasts-table {
    background-color: rgba(255, 255, 255, 0.8);
    /* Add slight transparency */
    border-collapse: separate;
    border-spacing: 0;
    width: 100%;
}

.laracasts-table th {
    font-weight: 600;
    text-align: left;
    padding: 0.75rem 1rem;
    border-bottom: 2px solid var(--laracasts-gray);
}

.laracasts-table td {
    padding: 1rem;
    border-bottom: 1px solid var(--laracasts-gray);
}

.laracasts-table tbody tr:hover {
    background-color: #f8fafc;
}

/* Forms */
.laracasts-form-label {
    font-weight: 600;
    margin-bottom: 0.5rem;
    display: block;
    color: #1a202c;
}

.laracasts-form-input {
    width: 100%;
    border: 1px solid var(--laracasts-gray);
    border-radius: 4px;
    padding: 0.75rem 1rem;
    margin-bottom: 1rem;
    font-size: 1rem;
    transition: border-color 0.2s;
}

.laracasts-form-input:focus {
    border-color: var(--laracasts-blue);
    outline: none;
    box-shadow: 0 0 0 3px rgba(52, 144, 220, 0.2);
}

/* Modal */
.laracasts-modal-header {
    border-bottom: 1px solid var(--laracasts-gray);
    padding: 1.25rem;
}

.laracasts-modal-body {
    padding: 1.25rem;
}

.laracasts-modal-footer {
    border-top: 1px solid var(--laracasts-gray);
    padding: 1.25rem;
    display: flex;
    justify-content: flex-end;
    gap: 0.75rem;
}

/* Utilities */
.laracasts-container {
    background-color: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 1rem;
}

.laracasts-text-sm {
    font-size: 0.875rem;
}

.laracasts-badge {
    display: inline-block;
    padding: 0.25rem 0.5rem;
    border-radius: 9999px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.025em;
}

.laracasts-badge-blue {
    background-color: rgba(0, 139, 153, 0.1);
    /* Updated blue */
    color: var(--laracasts-blue);
}

.laracasts-badge-green {
    background-color: rgba(56, 178, 172, 0.1);
    color: #38b2ac;
}

.laracasts-badge-red {
    background-color: rgba(245, 101, 101, 0.1);
    color: #f56565;
}

/* Footer update */
footer {
    background-color: rgba(31, 41, 55, 0.9) !important;
    color: white !important;
    backdrop-filter: blur(5px);
}

footer p {
    color: rgba(255, 255, 255, 0.8) !important;
}

main {
    min-height: 100vh;
}

/* Custom Tab Styling */
.laracasts-tabs {
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    margin-bottom: 2rem;
}

.laracasts-tab-link {
    color: rgba(255, 255, 255, 0.7) !important;
    background-color: transparent !important;
    border: none !important;
    border-bottom: 3px solid transparent !important;
    border-radius: 0 !important;
    padding: 0.75rem 1rem !important;
    font-weight: 500;
    transition: all 0.2s ease;
    margin-right: 0.5rem;
}

.laracasts-tab-link:hover {
    color: white !important;
    border-bottom-color: rgba(255, 255, 255, 0.4) !important;
}

.laracasts-tab-link.active {
    color: white !important;
    border-bottom-color: var(--laracasts-blue) !important;
    background-color: transparent !important;
}

/* Card body padding */
.card-body {
    padding: var(--bs-card-spacer-y) var(--bs-card-spacer-x);
}

.hero-section::before {
    background-image: linear-gradient(rgba(255, 255, 255, .03) .2em, transparent .1em), linear-gradient(90deg, rgba(255, 255, 255, .03) .2em, transparent .1em);
    background-size: 90px 90px;
    transform: rotate(-22deg);
    content: '';
    width: 4000px;
    height: 4000px;
    position: absolute;
    z-index: 0;
    filter: blur(3px);
  }
    
  .hero-section {
    overflow: hidden;
  }
  