@import url('https://fonts.googleapis.com/css2?family=Bungee+Shade&family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Arial', sans-serif;
}

body {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

.app-header {
    z-index: 1;
    background-color: rgb(30 30 30);
    width: calc(100% - 0%);
    height: calc(100vh - 90vh);
    display: flex;
    align-items: center;
    padding: 0px 15px;
}

.app-header>.nav-link {
    color: rgb(0, 255, 255);
    font-family: "Bungee Shade", sans-serif;
    text-decoration: none;
    font-size: 30px;
    letter-spacing: 1px;
}

.content-wrapper {
    width: calc(100% - 0%);
    height: calc(90vh - 0vh);
    display: flex;
    flex-direction: row;
}

.content-wrapper>.sub-menu {
    z-index: 1;
    background-color: rgb(65 65 65);
    box-shadow: 10px 8px 10px rgb(30 30 30);
    width: calc(20%);
    height: calc(90vh);
    display: flex;
    flex-direction: column;
    padding: 20px 30px 20px 20px;
    gap: 20px;
    overflow-y: auto;
}

.content-wrapper>.sub-menu>.sub-menu-link {
    background: rgb(65 65 65);
    width: calc(100% - 0%);
    box-shadow: inset 6px 6px 12px #4b4b4b, inset -6px -6px 12px 0px #272727, 8px 8px 12px #000000, -6px -6px 20px #333333;
    border-radius: 10px;
    border-top: 1px solid #4b4b4b;
    border-left: 1px solid #4b4b4b;
    border-bottom: 1px solid #272727;
    border-right: 1px solid #272727;
    padding: 12px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    text-decoration: none;
    font-family: "Montserrat", sans-serif;
    color: #ffffff;
    font-size: 13px;
    text-transform: uppercase;
    font-weight: bold;
}

.content-wrapper>.app-main {
    z-index: 0;
    background-color: rgb(65 65 65);
    width: calc(80% - 0%);
    height: calc(90vh - 0vh);
    padding: 10px 30px;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

/*  Diseño para Dashboard*/
.content-wrapper>.app-main>.dashboard-title {
    text-align: center;
    color: rgb(205 205 205);
    font-family: "Bungee Shade", sans-serif;
    font-size: 20px;
    letter-spacing: 1px;
}

/*  Diseño para card*/
.content-wrapper>.app-main>.card-link-wrapper {
    background: rgb(65 65 65);
    width: calc(100% - 0%);
    box-shadow: inset 6px 6px 12px #4b4b4b, inset -6px -6px 12px 0px #272727, 8px 8px 12px #000000, -6px -6px 20px #333333;
    border-radius: 10px;
    border-top: 1px solid #4b4b4b;
    border-left: 1px solid #4b4b4b;
    border-bottom: 1px solid #272727;
    border-right: 1px solid #272727;
    padding: 20px 30px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    text-decoration: none;
    cursor: pointer;
}

.content-wrapper>.app-main>.card-link-wrapper>.card-info {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.content-wrapper>.app-main>.card-link-wrapper>.card-info>.card-title {
    font-family: "Montserrat", sans-serif;
    color: #ffffff;
    letter-spacing: 0.5px;
    font-size: 20px;
}

.content-wrapper>.app-main>.card-link-wrapper>.card-info>.card-url {
    font-family: "Montserrat", sans-serif;
    color: #d1d1d1;
    letter-spacing: 0.5px;
    font-size: 12px;
    font-style: oblique;
}

.content-wrapper>.app-main>.card-link-wrapper>.card-action {
    display: flex;
    align-items: center;
    justify-content: center;
}

.dot {
    height: 15px;
    width: 15px;
    margin-right: 10px;
    border-radius: 10px;
    background-color: #00ff0d;
    box-shadow: 0 0 10px 0 rgba(0, 255, 13, 0.8);
    animation: pulse 1.5s infinite ease-in-out;
}

.dot:last-child {
    margin-right: 0;
}

.dot:nth-child(1) {
    animation-delay: -0.3s;
}

@keyframes pulse {
    0% {
        transform: scale(0.9);
        background-color: #00ff0d; /* verde base */
        box-shadow: 0 0 10px 0 rgba(0, 255, 13, 0.8);
    }

    50% {
        transform: scale(1.15);
        background-color: #00cc0a;
        box-shadow: 0 0 20px 2px rgba(0, 255, 13, 0.6);
    }

    100% {
        transform: scale(0.9);
        background-color: #00ff0d; /* vuelve al verde base */
        box-shadow: 0 0 10px 0 rgba(0, 255, 13, 0.8);
    }
}



body::-webkit-scrollbar {
    width: 6px;
    height: 6px;
}

body::-webkit-scrollbar-track {
    background: #616161;
    border-radius: 3px;
}

body::-webkit-scrollbar-thumb {
    background-color: #677E8A;
    border-radius: 3px;
}

body::-webkit-scrollbar-thumb:hover {
    background-color: #84A0B0;
}

body{
    scrollbar-width: thin;
    scrollbar-color: #616161 rgb(65 65 65);
}

