/* public/css/app.css */

/*‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾
|   General Styles
|_______________________________________________________________*/

/* General Styles */
body { 
    font-family: 'Inter', sans-serif;
    background-color: #f8f9fa; 
}
.wrapper { display: flex; min-height: 100vh; }

.main-content {
    flex: 1;
    padding: 2rem;
    margin-left: 220px;
}

/*‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾
|   Buttons
|_______________________________________________________________*/

.bg-primary {
    background-color: #E26535 !important;
}


/*‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾
|   Buttons
|_______________________________________________________________*/

.btn { border-radius: 10px !important; -webkit-border-radius: 10px !important; -moz-border-radius: 10px !important; -ms-border-radius: 10px !important; -o-border-radius: 10px !important; }

.btn-primary { background-color: #E26535; border-color: #E26535; }
.btn-primary:hover, .btn-primary:active { background-color: #F1AC23 !important; border-color: #F1AC23 !important; }

.text-primary { color: #E26535 !important }

.filter-btn {
    opacity: 0.8;
}

.btn-transparent-white {
    background-color: transparent;
    border: 1px solid white;
    color: white;
    font-weight: bold;
    transition: all 0.2s ease-in-out;
    -webkit-transition: all 0.2s ease-in-out;
    -moz-transition: all 0.2s ease-in-out;
    -ms-transition: all 0.2s ease-in-out;
    -o-transition: all 0.2s ease-in-out;
}

.btn-transparent-white:hover {
    background-color: #ffffff;
    color: black;
}

.btn-transparent-white-danger {
    background-color: transparent;
    border: 1px solid white;
    color: white;
    font-weight: bold;
    transition: all 0.2s ease-in-out;
    -webkit-transition: all 0.2s ease-in-out;
    -moz-transition: all 0.2s ease-in-out;
    -ms-transition: all 0.2s ease-in-out;
    -o-transition: all 0.2s ease-in-out;
}

.btn-transparent-white-danger:hover {
    background-color: #dc3545;
    border-color: #dc3545;
}

.btn-transparent-white:focus,
.btn-transparent-white-danger:focus {
    box-shadow: none;
    outline: none;
}

.section-header {
    border-bottom: 1px solid #E6E9F0;
}


/*‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾
|   Dashboard
|_______________________________________________________________*/

.project-card {
    background-size: cover;
    background-position: center;
    height: 300px;
    color: #fff;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    overflow: hidden;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    border-radius: 10px;
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    -ms-border-radius: 10px;
    -o-border-radius: 10px;
}
.project-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
}
.project-card-content {
    z-index: 1;
    padding: 2rem;
    flex-grow: 1;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-start;
}
.project-title {
    font-weight: 600;
    font-size: 1.2rem;
}
.card-button {
    margin-left: auto;
}

