/* Dashboard Specific Styles */
.top-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 40px;
    /*border-bottom: 1px solid var(--line-color);*/
    /*box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);*/
}

.logo {
    display: flex;
    align-items: center;
    font-weight: 550;
    /*font-size: 17px;*/
    color: #242424;
    gap: 1 rem;

}

.logo #logo {
    margin-right: 10px;
    font-size: 28px;
}

.top-buttons {
    display: flex;
    gap: 15px;
}

.container {
    max-width: 500px;
    margin: 60px auto;
    padding: 0 20px;
}

.card {
    background: white;
    border-radius: 8px;
    padding: 30px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
    border: 1px solid var(--line-color);
}

.card h2 {
    font-size: 24px;
    margin-bottom: 25px;
    text-align: center;
    color: var(--dark-color);
    font-weight: 600;
}

.form-group {
    margin-bottom: 20px;
    text-align: left;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: var(--dark-color);
    font-size: 14px;
}

.create-btn {
    width: 100%;
    padding: 12px;
    background: var(--primary-color);
    color: #fff;
    border: none;
    border-radius: 40px;
    font-size: 16px;
    cursor: pointer;
    font-weight: 600;
    margin-top: 10px;
    transition: background 0.3s;
}

.create-btn:hover {
    background: var(--secondary-color);
}

.create-btn:disabled {
    background: #A19F9D;
    cursor: not-allowed;
}

.meeting-result {
    display: none;
    margin-top: 30px;
    padding: 20px;
    background: #F8F9FA;
    border-radius: 8px;
    border-left: 4px solid var(--primary-color);
}

.result-title {
    font-weight: 600;
    margin-bottom: 15px;
    color: var(--dark-color);
}

.link-container {
    display: flex;
    margin-bottom: 15px;
}

.link-input {
    flex: 1;
    padding: 10px 15px;
    border: 1px solid var(--line-color);
    border-right: none;
    border-radius: 4px 0 0 4px;
    background: white;
    font-size: 14px;
}

.copy-btn {
    padding: 10px 15px;
    background: var(--primary-color);
    color: white;
    border: none;
    border-radius: 0 40px 40px 0;
    cursor: pointer;
    font-size: 14px;
    transition: background 0.3s;
}

.copy-btn:hover {
    background: var(--secondary-color);
}

.password-display {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.password-value {
    font-family: monospace;
    font-size: 16px;
    letter-spacing: 1px;
    font-weight: 600;
}

.action-buttons {
    display: flex;
    gap: 10px;
}

.action-btn {
    flex: 1;
    padding: 10px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-weight: 600;
    font-size: 14px;
    transition: all 0.3s;
}

.btn-send {
    background: var(--success-color);
    color: white;
}

.btn-send:hover {
    background: #0e6b0e;
}