.form-line-active input:focus, .form-line-active textarea:focus {
border: 1px solid green !important;
box-shadow: 0 0 3px green !important;
-moz-box-shadow: 0 0 3px green !important;
-webkit-box-shadow: 0 0 3px green !important;
}

input:focus, textarea:focus, select:focus {
outline-offset: 0px !important;
outline: none !important;
}

.topButtons {

     font-size: 20px;
     color: #000000;
     background: #f8fdf7;
     border: none;
     border-radius: 2px;
     font-family: arial;
     transition: all 0.25s ease;
     margin-right: 5px;
}
.topButtons:hover {
     color: #000000;
     background: #64c369;
     box-shadow: 0px 0px 15px 0.28px #64c369;
     border-color: none;
} 


  @import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&display=swap');
        
        body {
            font-family: 'Inter', sans-serif;
        }
        
        .garden-bg {
            background: #f8fdf7;
            position: relative;
            overflow: hidden;
        }
        
        .garden-bg::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%2322c55e' fill-opacity='0.05'%3E%3Ccircle cx='30' cy='30' r='2'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E") repeat;
        }
        
        .leaf-pattern {
            position: absolute;
            width: 100%;
            height: 100%;
            opacity: 0.1;
            background-image: 
                radial-gradient(circle at 20% 80%, rgba(34, 197, 94, 0.08) 0%, transparent 50%),
                radial-gradient(circle at 80% 20%, rgba(34, 197, 94, 0.06) 0%, transparent 50%),
                radial-gradient(circle at 40% 40%, rgba(34, 197, 94, 0.1) 0%, transparent 50%);
        }
        
        .floating-elements {
            position: absolute;
            width: 100%;
            height: 100%;
            overflow: hidden;
        }
        
        .floating-leaf {
            position: absolute;
            animation: float 6s ease-in-out infinite;
            opacity: 0.1;
        }
        
        .floating-leaf:nth-child(1) { top: 20%; left: 10%; animation-delay: 0s; }
        .floating-leaf:nth-child(2) { top: 60%; left: 80%; animation-delay: 2s; }
        .floating-leaf:nth-child(3) { top: 80%; left: 20%; animation-delay: 4s; }
        
        @keyframes float {
            0%, 100% { transform: translateY(0px) rotate(0deg); }
            50% { transform: translateY(-20px) rotate(5deg); }
        }
        
        .card-hover {
            transition: all 0.3s ease;
        }
        
        .card-hover:hover {
            transform: translateY(-5px);
            box-shadow: 0 20px 40px rgba(0,0,0,0.15);
        }
        
        .nav-item {
            position: relative;
            transition: all 0.3s ease;
        }
        
        .nav-item::after {
            content: '';
            position: absolute;
            bottom: -2px;
            left: 0;
            width: 0;
            height: 2px;
            background: #22c55e;
            transition: width 0.3s ease;
        }
        
        .nav-item:hover::after {
            width: 100%;
        }
        
        /* Oracle APEX Template Specific Styles */
        .apex-page-template {
            min-height: 100vh;
        }
        
        .apex-region {
            background: rgba(255, 255, 255, 0.8);
            backdrop-filter: blur(10px);
            border: 1px solid rgba(34, 197, 94, 0.2);
            border-radius: 12px;
            padding: 1.5rem;
            margin-bottom: 1rem;
            box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
        }
        
        .apex-item-wrapper {
            margin-bottom: 1rem;
        }
        
        .apex-item-label {
            color: #374151;
            font-weight: 500;
            margin-bottom: 0.5rem;
            display: block;
        }
        
        .apex-item-input {
            width: 100%;
            padding: 0.75rem;
            border: 1px solid rgba(34, 197, 94, 0.3);
            border-radius: 8px;
            background: rgba(255, 255, 255, 0.9);
            color: #374151;
            backdrop-filter: blur(5px);
        }
        
        .apex-item-input::placeholder {
            color: rgba(55, 65, 81, 0.6);
        }
        
        .apex-item-input:focus {
            outline: none;
            border-color: #22c55e;
            box-shadow: 0 0 0 2px rgba(34, 197, 94, 0.2);
        }
        
        .apex-button {
            background: #16a34a;
            color: white;
            padding: 0.75rem 1.5rem;
            border: none;
            border-radius: 8px;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
        }
        
        .apex-button:hover {
            background: #15803d;
            transform: translateY(-1px);
        }
        
        .apex-button-secondary {
            background: rgba(255, 255, 255, 0.9);
            border: 1px solid rgba(34, 197, 94, 0.3);
            color: #374151;
        }
        
        .apex-button-secondary:hover {
            background: rgba(255, 255, 255, 1);
            border-color: #22c55e;
        }
        
        /* APEX Interactive Grid Styling */
        .apex-ig {
            background: rgba(255, 255, 255, 0.08);
            border-radius: 8px;
        }
        
        .apex-ig .a-GV-table {
            background: transparent;
        }
        
        .apex-ig .a-GV-header {
            background: rgba(255, 255, 255, 0.15);
            color: white;
        }
        
        /* APEX Report Styling */
        .apex-report {
            background: rgba(255, 255, 255, 0.08);
            border-radius: 8px;
            overflow: hidden;
        }
        
        .apex-report th {
            background: rgba(255, 255, 255, 0.15);
            color: white;
            padding: 1rem;
        }
        
        .apex-report td {
            color: rgba(255, 255, 255, 0.95);
            padding: 0.75rem 1rem;
            border-bottom: 1px solid rgba(255, 255, 255, 0.15);
        }