@tailwind base;
@tailwind components;
@tailwind utilities;

/*

@layer components {
  .btn-primary {
    @apply py-2 px-4 bg-blue-200;
  }
}

*/
/*
 * This is a manifest file that'll be compiled into application.css, which will include all the files
 * listed below.
 *
 * Any CSS (and SCSS, if configured) file within this directory, lib/assets/stylesheets, or any plugin's
 * vendor/assets/stylesheets directory can be referenced here using a relative path.
 *
 * You're free to add application-wide styles to this file and they'll appear at the bottom of the
 * compiled file so the styles you add here take precedence over styles defined in any other CSS
 * files in this directory. Styles in this file should be added after the last require_* statement.
 * It is generally better to create a new file per style scope.
 *


 
 */
  
#dropdown-user{
    transform: translate3d(1196px, 58px, 0px);
}

@media only screen and (max-width: 900px) {
    #dropdown-user{
        transform: translate3d(620px, 58px, 0px);
    }
}

@media only screen and (max-width: 500px) {
    #dropdown-user{
        transform: translate3d(50px, 62px, 0px);
    }
}

@media only screen and (max-width: 600px) {
    #dropdown-user{
        transform: translate3d(280px, 62px, 0px);
    }
}



.pagination {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0.5em; /* Reduced padding */
}

.pagination a,
.pagination span,
.pagination em {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0.3em 0.5em; /* Reduced padding */
    border: 1px solid #dee2e6;
    margin: 0 0.2em; /* Reduced margin */
    color: #6c757d; /* Default text color */
    text-decoration: none;
    background-color: white; /* Default background */
    border-radius: 0.375rem; /* Rounded corners */
    transition: background-color 0.3s, color 0.3s; /* Smooth transitions */
    font-size: 0.875rem; /* Decreased font size */
}

.pagination a:hover {
    background-color: #f1f1f1; /* Hover background */
    color: #2563eb; /* Hover text color */
}

.pagination .current {
    font-weight: bold;
    background-color: #2563eb;
    color: white;
    font-size: 0.875rem; /* Match font size with links */
}

.pagination .disabled {
    color: #6c757d;
    pointer-events: none;
    background-color: transparent; /* No background for disabled */
}




